summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-07-19 23:14:45 +0200
committerGitHub <noreply@github.com>2023-07-19 23:14:45 +0200
commit86bbfe3b1d683640921e614c7d44ded67bb859d4 (patch)
treecd076ff72f4b98f5b7b8394da301746a9932255f
parentMerge pull request #11109 from Morph1984/net (diff)
parentDebug SetIdleTimeDetectionExtension (diff)
downloadyuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar.gz
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar.bz2
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar.lz
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar.xz
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.tar.zst
yuzu-86bbfe3b1d683640921e614c7d44ded67bb859d4.zip
-rw-r--r--src/core/hle/service/am/am.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index a2375508a..4f400d341 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -506,8 +506,8 @@ void ISelfController::SetHandlesRequestToDisplay(HLERequestContext& ctx) {
void ISelfController::SetIdleTimeDetectionExtension(HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
idle_time_detection_extension = rp.Pop<u32>();
- LOG_WARNING(Service_AM, "(STUBBED) called idle_time_detection_extension={}",
- idle_time_detection_extension);
+ LOG_DEBUG(Service_AM, "(STUBBED) called idle_time_detection_extension={}",
+ idle_time_detection_extension);
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ResultSuccess);